home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CICA 1995 August
/
CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso
/
disc2
/
nt
/
source.exe
/
POSIX
/
GREP
/
REGERROR.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-09-29
|
359 b
|
28 lines
#if 0
#include <stdio.h>
#else
#include <stddef.h>
#endif
void
#if __STDC__
regerror (const char *s)
#else
regerror(s)
char *s;
#endif
{
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
# if 0
fprintf(stderr, "regexp(3): %s\n", s);
exit(1);
# else
if (s == NULL)
;
# endif
#endif
return; /* let std. egrep handle errors */
}